home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / mouses.arc / M_MP80.MSC < prev    next >
Text File  |  1986-08-28  |  2KB  |  92 lines

  1. ;
  2. ;    Multiplan Pop-up Menu Configuration
  3. ;
  4. Comment     ("Configured for Multiplan")
  5.  
  6. ;
  7. ;    Parameters
  8. ;
  9. Sensitivity    (13, 8)     ; (Xinc, Yinc)
  10. Hysteresis    (1, 1)        ; (AutoX, AutoY)
  11. ReverseVideo    (Yes)        ; Menu is displayed in reverse video
  12. FixedMenu    (Yes)        ; Menu is in a fixed position
  13. MenuCenter    (0, 12)     ; (Col, Row) of menu center
  14. EnableBeep    (Yes)        ; Beeps if wrong button pressed with menu up
  15.  
  16. ;
  17. ;    Cursor Definitions
  18. ;
  19. DataCurs: Cursor
  20. (
  21.     Left    ([Left])
  22.     Right    ([Right])
  23.     Up    ([Up])
  24.     Down    ([Down])
  25. )
  26.  
  27. CmdCurs: Cursor
  28. (
  29.     Left    ([F9])
  30.     Right    ([F10])
  31. )
  32.  
  33. ;
  34. ;    Button Definitions
  35. ;
  36. LBM:    Button    (Menu(Main))        ; Left button, Main Menu
  37. MB:    Button    (Keys([Enter]))     ; Middle button
  38. RB:    Button    (Keys([Esc]))        ; Right button
  39. LBC:    Button    (Menu(Calc))        ; Left button, Calc Menu
  40.  
  41. ;
  42. ;    Menu Definitions
  43. ;
  44. Main: Menu
  45. (
  46.     Title    ("Main")
  47.     Item    ("Data Cursor",         Cursor(DataCurs))
  48.     Item    ("Command Cursor",      Cursor(CmdCurs))
  49.     Item    ("Next Field",          Keys([Tab]))
  50.     Item    ("Calc Menu",           Menu(Calc), Button(LBC))
  51.     Item    (":",                   Keys(":"))
  52.     Item    ("Help",                Keys([a-h]))
  53.     Item    ("Confirm (Yes)",       Keys("Y"))
  54.     Item    ("Page Up",             Keys([PgUp]))
  55.     Item    ("Page Down",           Keys([PgDn]))
  56.     Item    ("Top of Worksheet",    Keys([c-PgUp]))
  57.     Item    ("Page Left",           Keys([c-Left]))
  58.     Item    ("Page Right",          Keys([c-Right]))
  59.     Item    ("Next Window",         Keys([F1]))
  60.     Item    ("Next Unlocked Cell",  Keys([F2]))
  61. )
  62.  
  63. Calc: Menu
  64. (
  65.     Title    ("Calc")
  66.     Item    ("Data Cursor",         Cursor(DataCurs))
  67.     Item    ("Command Cursor",      Cursor(CmdCurs))
  68.     Item    ("Sum(",                Keys("Sum("))
  69.     Item    (":",                   Keys(":"))
  70.     Item    (")",                   Keys(")"))
  71.     Item    ("(",                   Keys("("))
  72.     Item    ("+",                   Keys("+"))
  73.     Item    ("-",                   Keys("-"))
  74.     Item    ("*",                   Keys("*"))
  75.     Item    ("/",                   Keys("/"))
  76.     Item    ("Absolute",            Keys([F3]))
  77.     Item    ("Recalc",              Keys([F4]))
  78.     Item    ("Main Menu",           Menu(Main), Button(LBM))
  79. )
  80.  
  81. ;
  82. ;    Mouse Definition
  83. ;
  84. Mouse
  85. (
  86.     Left    (LBM)
  87.     Middle    (MB)
  88.     LeftRight(MB)
  89.     Right    (RB)
  90.     Cursor    (DataCurs)
  91. )
  92.